home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 1
/
Merciful - Disc 1.iso
/
software
/
a
/
asm_one
/
asm-onev1.25b.dms
/
in.adf
/
Release3.1
/
Includes3.1.lha
/
include
/
clib
/
macros.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1993-08-12
|
351 b
|
18 lines
#ifndef CLIB_MACROS_H
#define CLIB_MACROS_H
/*
** $VER: macros.h 36.0 (30.11.90)
** Includes Release 40.13
**
** C prototypes
**
** (C) Copyright 1990-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(x) ((x<0)?(-(x)):(x))
#endif /* CLIB_MACROS_H */